write up ctf by ariafatah

ariaf.my.id/ctf_aria/general/E_Super SSH.html


soal

Using a Secure Shell (SSH) is going to be pretty important.
Additional details will be available after launching your challenge instance.

lauch istance

Using a Secure Shell (SSH) is going to be pretty important.
Can you ssh as ctf-player to titan.picoctf.net at port 59829 to get the flag?
You’ll also need the password f3b61b38. If asked, accept the fingerprint with yes.
If your device doesn’t have a shell, you can use: https://webshell.picoctf.org
If you’re not sure what a shell is, check out our Primer: https://primer.picoctf.com/#_the_shell

hint

  • https://linux.die.net/man/1/ssh
  • You can try logging in ‘as’ someone with @titan.picoctf.net
  • How could you specify the port?
  • Remember, passwords are hidden when typed into the shell

solve

ssh ctf-player@titan.picoctf.net -p 61952
# The authenticity of host '[titan.picoctf.net]:61952 ([3.139.174.234]:61952)' can't be established.
# ED25519 key fingerprint is SHA256:4S9EbTSSRZm32I+cdM5TyzthpQryv5kudRP9PIKT7XQ.
# This key is not known by any other names.
# Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
# Warning: Permanently added '[titan.picoctf.net]:61952' (ED25519) to the list of known hosts.
# ctf-player@titan.picoctf.net's password:
# Welcome ctf-player, here's your flag: picoCTF{s3cur3_c0nn3ct10n_3e293eea}
# Connection to titan.picoctf.net closed.

flag

picoCTF{s3cur3_c0nn3ct10n_3e293eea}